home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Views
/
Panes
/
View.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
172b
|
16 lines
// View.h
#ifndef View_h
#define View_h
class CellVisitor;
class Canvas;
class View
{
public:
virtual void Deliver( CellVisitor&, const Canvas& ) = 0;
};
#endif